@media screen and (min-width: 1080px) {
    
    /***** Structure *****/
    #languageSwitch {
        position: fixed;
        right: 2em;
        bottom: 0;
        z-index: 999;
    }
    #languageSwitch {
        cursor: pointer;
    }
    #languageSwitch {
        width: 110px;
        height: 40px;
    }
    #languageSwitch {
        background-color: var(--primary);
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        box-shadow: 0 0 5px #00000080;
    }
    #languageSwitch {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #languageSwitchInner{
        position: relative;
    }
    #languageSwitchInner {
        display: grid;
        grid-template-columns: 20% auto;
        align-items: center;
        justify-items: center;
        gap: 5px;
    }
    #languageSwitchInner{
        padding: 10px 15px;
    }
    #languageSwitchInner input[type="checkbox"]{
        position: absolute;
        bottom: -70px;
        z-index: 1;
    }
    #languageSwitchInner input[type="checkbox"]{
        position: absolute;
        width: 100%;
        height: 110px;
    }
    #languageSwitchInner input[type="checkbox"]{
        opacity: 0;
    }
    #languageSwitchInner svg {
        width: 100%;
        height: auto;
    }
    #languageSwitchInner svg {
        color: #fff;
    }
    #languageSwitchInner {
        position: relative;
    }
    #selectedLanguage {
        width: 100%;
        height: auto;
    }
    #selectedLanguage {
        display: flex;
        align-items: center;
    }
    .currentLanguage {
        position: absolute;
    }
    .currentLanguage {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-items: center;
        gap: 5px;
    }
    .currentLanguage img {
        width: 24px;
        height: 24px;
        border-radius: 50%;
    }
    .currentLanguage img {
        object-fit: fill;
        object-position: center;
    }
    .currentLanguage p {
        font-family: 'menu-font';
        font-size: 16px;
        text-transform: uppercase;
        color: #fff;
    }

    /***** Animations *****/
    @keyframes languageArrowRotatesIn {
        from {
            transform: rotate(0);
        }
        to {
            transform: rotate(-90deg);
        }
    }

    .languageArrowRotatesIn {
        animation: languageArrowRotatesIn .3s forwards;
    }

    @keyframes languageArrowRotatesOut {
        from {
            transform: rotate(-90deg);
        }
        to {
            transform: rotate(0);
        }
    }

    .languageArrowRotatesOut {
        animation: languageArrowRotatesOut .3s forwards;
    }


}
    
    